Tokenize String
Command Prototype
arrParticiple = NLP.Tokenize(strText)
Command Description
Parses an input string and returns an array of dictionaries, each containing information corresponding to each word's content, part of speech, and index in the input string. Internet access is needed for this command. Each machine is limited to 60 calls per minute, and exceeding the limit will result in a 10-minute ban
Parameter Description
- Required Parameter
- strText--Input string to parse and tokenize
- return
- arrParticiple--Returns an array of dictionaries {text: "word", pos: "part of speech", idx_start:"index of the word's beginning in original string"}